/*右侧浮动*/
.fixed-contain {
  position: fixed;
  background: #FFF;
  width: 64px;
  box-shadow: rgba(0, 0, 0, .2) 0 0 8px;
  border-radius: 16px;
  padding-bottom: 12px;
  margin-top: -100px;
  top: 50%;
  right: 24px;
  z-index: 99999
}

.fixed-contain li {
  text-align: center;
  margin-top: 9px;
  cursor: pointer;
  position: relative
}

.fixed-contain li .box i {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: url(https://aicpa.gaodun.cn/skin_new/images/fixed-contain-icon.png) no-repeat
}

.fixed-contain li:nth-child(1) .box i {
  background-position: 0 0
}

.fixed-contain li:nth-child(2) .box i {
  background-position: -40px 0
}

.fixed-contain li:nth-child(3) .box i {
  background-position: -80px 0
}

.fixed-contain li:nth-child(4) .box i {
  background-position: -120px 0
}

.fixed-contain li .box span {
  display: block;
  font-size: 12px;
  color: #333;
  line-height: 18px
}

.fixed-contain li .tips {
  display: none;
  position: absolute;
  top: 50%;
  right: 80px;
  margin-top: -17px;
  background: #c12183;
  width: 185px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border-radius: 3px
}

.fixed-contain li .weixin {
  background: #FFF;
  margin-top: -75px;
  width: 130px;
  height: 130px;
  padding: 10px;
  -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .06), 0 15px 40px 0 rgba(0, 0, 0, .12);
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .06), 0 15px 40px 0 rgba(0, 0, 0, .12);
}

.fixed-contain li .weixin img {
  width: 100%
}

.fixed-contain li:hover .weixin,
.fixed-contain li:hover .tips {
  display: block;
  -webkit-animation: tipsShow .25s ease-in 1 forwards;
  -moz-animation: tipsShow .25s ease-in 1 forwards;
  -o-animation: tipsShow .25s ease-in 1 forwards;
  -ms-animation: tipsShow .25s ease-in 1 forwards;
  animation: tipsShow .25s ease-in 1 forwards
}